/* 标题 */
.sectionTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sectionTitle h1 {
    font-size: 40px;
    line-height: 1.5;
    color: #000747;
    display: flex;
    align-items: center;
}

.sectionTitle h1::after {
    content: "";
    display: block;
    width: 29px;
    height: 27px;
    background: url("/assets/images/Group127.png") center no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.sectionTitle h1 br {
    display: none;
}

.sectionTitle h2 {
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: rgba(0, 7, 71, 0.5);
}



@media (max-width: 1200px) {
    .sectionTitle h1 {
        font-size: 32px;
    }

    .sectionTitle h2 {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .sectionTitle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sectionTitle h1 {
        display: block;
        font-size: 24px;
        padding-right: 30px;
    }

    .sectionTitle h1 br {
        display: block;
    }

    .sectionTitle h2 {
        font-size: 14px;
        text-align: left;
    }

    .sectionTitle h1::after {
        width: 25px;
        height: 20px;
        margin-left: 0;
        position: absolute;
        right: 0;
        bottom: 6px;
    }
}


section {
    padding: 40px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}


@media (max-width: 1540px) {
    section {
        padding: 35px 0;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 30px 0;
    }
}

@media (max-width: 460px) {
    section {
        padding: 20px 0;
    }
}

/* 按钮 */
.AMore {
    transition: 0.5s;
    width: 180px;
    height: 50px;
    color: #fff;
    background: var(--color);
    border-radius: 6px;
    position: relative;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AMore:hover {
    color: var(--color);
    background: #BFBFBF;
}

@media (max-width: 1200px) {
    .AMore {
        width: 140px;
        height: 45px;
    }
}

@media (max-width: 720px) {
    .AMore {
        width: 120px;
        height: 40px;
        font-size: 14px;
    }
}




@keyframes text {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}